/* Global Styles */
body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

/* Navigation Bar */
.top-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    max-height: 50px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.main-menu ul li {
    margin-left: 20px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #FEC33F;
}

/* Contact Header */
.contact-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.contact-header h2 {
    font-size: 36px;
    color: #333;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

/* Contact Info & Form */
.contact-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-info, 
.contact-form {
    flex: 1;
    max-width: 500px;
    background: white;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info h3 {
    margin-top: 0;
    color: #222;
}

.contact-info p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #FEC33F;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e0a82e;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    
    color: black;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: auto;
}

.social-links img {
    width: 30px;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
